home *** CD-ROM | disk | FTP | other *** search
-
- ; Install script for powerpacker.library
-
- (set old_level @user-level)
- (set @default-dest "")
-
- (set pplib "powerpacker.library")
- (set reqtoolslib "libs20/reqtools.library")
-
- ;=============================================================================
- ; English strings
-
- (set #copying-powerpacker "Copying powerpacker.library to Libs:...")
- (set #copying-reqtools "Copying reqtools.library to Libs:...")
-
- (set #install-msg
- (cat "\n\nPowerPacker library installation script.\n"
- "This script installs powerpacker.library\n"
- "on your Amiga.\n\n"
- "Read the documentation for more information\n"
- "on the distribution of powerpacker.library.\n\n"
- "© 1991-1993 Nico François\n"
- "All rights reserved."
- ))
-
- ;=============================================================================
-
- (message #install-msg)
-
- (copylib
- (prompt "\n" #copying-powerpacker)
- (help @copylib-help)
- (source pplib)
- (dest "Libs:")
- (confirm)
- )
-
- (if (< (/ (getversion) 65536) 37) (set reqtoolslib "libs13/reqtools.library"))
-
- (copylib
- (prompt "\n" #copying-reqtools)
- (help @copylib-help)
- (source reqtoolslib)
- (dest "Libs:")
- (confirm)
- )
-